23 lines
548 B
Java
23 lines
548 B
Java
package com.solution.rule.domain;
|
|
|
|
import com.solution.rule.domain.dto.WeaponModelDTO;
|
|
import com.solution.rule.domain.vo.ComponentCountVO;
|
|
import com.solution.rule.domain.vo.PlatformWeaponAggregateVO;
|
|
import com.solution.rule.domain.vo.WeaponModelVO;
|
|
import lombok.Data;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
@Data
|
|
public class RuleParam {
|
|
|
|
private List<PlatformWeaponAggregateVO> resultWeapons;
|
|
|
|
private WeaponModelVO weaponModelVO;
|
|
|
|
private List<WeaponModelDTO> weaponModelDTOList;
|
|
|
|
private List<ComponentCountVO> databaseWeapons;
|
|
}
|