| | |
| | | public class CompanyFieldForm extends UsePartnerForm { |
| | | private String manager; |
| | | private String url; |
| | | private String ipStart; |
| | | private String ipEnd; |
| | | private List<String> ipStarts = new ArrayList<>(); |
| | | private List<String> ipEnds = new ArrayList<>(); |
| | | private String memo; |
| | | private String tel; |
| | | private Long ispId; |
| | |
| | | private String regionName; |
| | | private String statusName; |
| | | |
| | | private Long registerId; // 등록자 아이디 - insert batch 에서 사용 |
| | | private Long registerId; // 등록자 아이디 - excel import 에서 사용 |
| | | |
| | | private List<Long> removeIds = Lists.newArrayList(); |
| | | |
| | |
| | | |
| | | if (MapUtil.getStrings(params, "emails") != null) { |
| | | form.setEmailList(MapUtil.getStrings(params, "emails")); |
| | | } |
| | | |
| | | if (MapUtil.getStrings(params, "ipStarts") != null && MapUtil.getStrings(params, "ipEnds") != null) { |
| | | form.setIpStarts(MapUtil.getStrings(params, "ipStarts")); |
| | | form.setIpEnds(MapUtil.getStrings(params, "ipEnds")); |
| | | } |
| | | |
| | | if (MapUtil.getLongs(params,"removeIds") != null) { |
| | |
| | | this.url = url; |
| | | } |
| | | |
| | | public String getIpStart() { |
| | | return ipStart; |
| | | } |
| | | |
| | | public void setIpStart(String ipStart) { |
| | | this.ipStart = ipStart; |
| | | } |
| | | |
| | | public String getIpEnd() { |
| | | return ipEnd; |
| | | } |
| | | |
| | | public void setIpEnd(String ipEnd) { |
| | | this.ipEnd = ipEnd; |
| | | } |
| | | |
| | | public List<String> getIpStarts() { |
| | | return ipStarts; |
| | | } |
| | | |
| | | public void setIpStarts(List<String> ipStarts) { |
| | | this.ipStarts = ipStarts; |
| | | } |
| | | |
| | | public List<String> getIpEnds() { |
| | | return ipEnds; |
| | | } |
| | | |
| | | public void setIpEnds(List<String> ipEnds) { |
| | | this.ipEnds = ipEnds; |
| | | } |
| | | |
| | | public String getMemo() { |
| | | return memo; |
| | | } |