Commit f404376b authored by lcl's avatar lcl

u

parent cd6e1a1d
......@@ -2,6 +2,7 @@ package com.dsk.cscec.domain;
import java.util.Date;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableLogic;
import com.baomidou.mybatisplus.annotation.TableName;
......@@ -32,8 +33,7 @@ public class CbQuantitySummary implements Serializable {
/**
* 序号
*/
@Excel(name = "序号")
private String number;
private Integer number;
/**
* 成本阶段(0:标前成本 1:标后成本 2:转固成本)
*/
......@@ -141,5 +141,12 @@ public class CbQuantitySummary implements Serializable {
@TableLogic(value = "0", delval = "2")
private Integer delFalg;
@Excel(name = "序号")
@TableField(exist = false)
private String num;
public void setNum(String num) {
this.number = Integer.valueOf(num);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment