| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- package com.uas.eis.sdk.dto;
- import lombok.Data;
- import lombok.NoArgsConstructor;
- import java.math.BigDecimal;
- import java.util.Date;
- /**
- * dto说明
- * */
- @Data
- @NoArgsConstructor
- public class CustvendDTO {
- /**
- *主键ID
- * */
- private int id;
- private int s_id;
- private String s_code;
- private String name;
- private String uid_type;
- private String uid;
- private String customer_type;
- private String is_valid;
- private String created_org;
- private String created_system;
- private String istemporary;
- private String mdm_code;
- private String reg_country;
- private String reg_place;
- private String reg_rep;
- private String reg_captial;
- private String reg_period;
- private String reg_bizscope;
- private String reg_foundeddate;
- private String reg_url;
- private String reg_address;
- private String creat_time;
- private String update_time;
- private String serial;
- }
|