| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- <?php
- /**
- * 激活信息
- * @author auto create
- */
- class CodeActiveInfoDto
- {
-
- /**
- * 总激活数量
- **/
- public $active_count;
-
- /**
- * 激活时间
- **/
- public $active_date;
-
- /**
- * 单据id
- **/
- public $bill_in_id;
-
- /**
- * 激活信息id
- **/
- public $code_active_info_id;
-
- /**
- * 激活时间
- **/
- public $crt_date;
-
- /**
- * 关联关系文件上传日期
- **/
- public $crt_date_string;
-
- /**
- * 旧企业ID
- **/
- public $ent_id;
-
- /**
- * 操作人编码
- **/
- public $oper_ic_code;
-
- /**
- * 操作人姓名
- **/
- public $oper_ic_name;
-
- /**
- * 最大包装数量
- **/
- public $other_num;
-
- /**
- * 处理数量
- **/
- public $process_count;
-
- /**
- * 处理日期
- **/
- public $process_date;
-
- /**
- * 处理结束时间
- **/
- public $process_end_date;
-
- /**
- * 处理标志
- **/
- public $process_flag;
-
- /**
- * 生产编号
- **/
- public $prod_code;
-
- /**
- * 企业ID
- **/
- public $ref_ent_id;
-
- /**
- * 关联关系类型
- **/
- public $relation_type;
-
- /**
- * 小码数量
- **/
- public $small_num;
-
- /**
- * 状态
- **/
- public $status;
-
- /**
- * 上传文件名
- **/
- public $upload_file_name;
-
- /**
- * 上传文件路径
- **/
- public $upload_file_path;
-
- /**
- * 上传标识
- **/
- public $upload_flag;
-
- /**
- * 紧急人
- **/
- public $user_cert;
- }
- ?>
|