Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
E
erp-service
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ximai
erp-service
Commits
592435dd
Commit
592435dd
authored
Oct 16, 2024
by
李驰骋
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增实体
parent
cd37a1a0
Show whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
387 additions
and
1007 deletions
+387
-1007
compiler.xml
.idea/compiler.xml
+1
-0
jarRepositories.xml
.idea/jarRepositories.xml
+5
-0
pom.xml
pom.xml
+31
-1
Cmsmb.java
...ain/java/com/topsunit/scanservice/ximai/entity/Cmsmb.java
+32
-0
Cmsmc.java
...ain/java/com/topsunit/scanservice/ximai/entity/Cmsmc.java
+17
-16
Copma.java
...ain/java/com/topsunit/scanservice/ximai/entity/Copma.java
+40
-0
Invma.java
...ain/java/com/topsunit/scanservice/ximai/entity/Invma.java
+30
-0
InvmaId.java
...n/java/com/topsunit/scanservice/ximai/entity/InvmaId.java
+48
-0
Invmb.java
...ain/java/com/topsunit/scanservice/ximai/entity/Invmb.java
+40
-64
Invml.java
...ain/java/com/topsunit/scanservice/ximai/entity/Invml.java
+14
-79
Mocta.java
...ain/java/com/topsunit/scanservice/ximai/entity/Mocta.java
+101
-695
Purma.java
...ain/java/com/topsunit/scanservice/ximai/entity/Purma.java
+27
-36
ximaiscanservice.iml
ximaiscanservice.iml
+1
-116
No files found.
.idea/compiler.xml
View file @
592435dd
...
@@ -2,6 +2,7 @@
...
@@ -2,6 +2,7 @@
<project
version=
"4"
>
<project
version=
"4"
>
<component
name=
"CompilerConfiguration"
>
<component
name=
"CompilerConfiguration"
>
<annotationProcessing>
<annotationProcessing>
<profile
default=
"true"
name=
"Default"
enabled=
"true"
/>
<profile
name=
"Maven default annotation processors profile"
enabled=
"true"
>
<profile
name=
"Maven default annotation processors profile"
enabled=
"true"
>
<sourceOutputDir
name=
"target/generated-sources/annotations"
/>
<sourceOutputDir
name=
"target/generated-sources/annotations"
/>
<sourceTestOutputDir
name=
"target/generated-test-sources/test-annotations"
/>
<sourceTestOutputDir
name=
"target/generated-test-sources/test-annotations"
/>
...
...
.idea/jarRepositories.xml
View file @
592435dd
<?xml version="1.0" encoding="UTF-8"?>
<?xml version="1.0" encoding="UTF-8"?>
<project
version=
"4"
>
<project
version=
"4"
>
<component
name=
"RemoteRepositoriesConfiguration"
>
<component
name=
"RemoteRepositoriesConfiguration"
>
<remote-repository>
<option
name=
"id"
value=
"central"
/>
<option
name=
"name"
value=
"Central Repository"
/>
<option
name=
"url"
value=
"http://maven.aliyun.com/nexus/content/groups/public/"
/>
</remote-repository>
<remote-repository>
<remote-repository>
<option
name=
"id"
value=
"central"
/>
<option
name=
"id"
value=
"central"
/>
<option
name=
"name"
value=
"Central Repository"
/>
<option
name=
"name"
value=
"Central Repository"
/>
...
...
pom.xml
View file @
592435dd
...
@@ -14,13 +14,16 @@
...
@@ -14,13 +14,16 @@
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
<maven.compiler.source>
8
</maven.compiler.source>
<maven.compiler.source>
8
</maven.compiler.source>
<maven.compiler.target>
8
</maven.compiler.target>
<maven.compiler.target>
8
</maven.compiler.target>
<org.springframework.boot.version>
2.
3.5.RELEASE
</org.springframework.boot.version>
<org.springframework.boot.version>
2.
4.0
</org.springframework.boot.version>
<org.mapstruct.version>
1.4.2.Final
</org.mapstruct.version>
<org.mapstruct.version>
1.4.2.Final
</org.mapstruct.version>
<com.alibaba.druid.version>
1.2.5
</com.alibaba.druid.version>
<com.alibaba.druid.version>
1.2.5
</com.alibaba.druid.version>
<com.auth0.jwt.version>
3.9.0
</com.auth0.jwt.version>
<com.auth0.jwt.version>
3.9.0
</com.auth0.jwt.version>
<mssql-jdbc>
9.2.1.jre8
</mssql-jdbc>
<mssql-jdbc>
9.2.1.jre8
</mssql-jdbc>
<commons-collections>
3.2.2
</commons-collections>
<commons-collections>
3.2.2
</commons-collections>
<commons-lang>
2.6
</commons-lang>
<commons-lang>
2.6
</commons-lang>
<lombok>
1.18.8
</lombok>
<knife4j>
3.0.3
</knife4j>
<hutool>
5.8.0.M3
</hutool>
</properties>
</properties>
<dependencyManagement>
<dependencyManagement>
...
@@ -77,6 +80,21 @@
...
@@ -77,6 +80,21 @@
<artifactId>
spring-boot-maven-plugin
</artifactId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
<version>
${org.springframework.boot.version}
</version>
<version>
${org.springframework.boot.version}
</version>
</dependency>
</dependency>
<dependency>
<groupId>
org.projectlombok
</groupId>
<artifactId>
lombok
</artifactId>
<version>
${lombok}
</version>
</dependency>
<dependency>
<groupId>
com.github.xiaoymin
</groupId>
<artifactId>
knife4j-spring-boot-starter
</artifactId>
<version>
${knife4j}
</version>
</dependency>
<dependency>
<groupId>
cn.hutool
</groupId>
<artifactId>
hutool-all
</artifactId>
<version>
${hutool}
</version>
</dependency>
</dependencies>
</dependencies>
</dependencyManagement>
</dependencyManagement>
...
@@ -138,6 +156,18 @@
...
@@ -138,6 +156,18 @@
<groupId>
com.microsoft.sqlserver
</groupId>
<groupId>
com.microsoft.sqlserver
</groupId>
<artifactId>
mssql-jdbc
</artifactId>
<artifactId>
mssql-jdbc
</artifactId>
</dependency>
</dependency>
<dependency>
<groupId>
org.projectlombok
</groupId>
<artifactId>
lombok
</artifactId>
</dependency>
<dependency>
<groupId>
com.github.xiaoymin
</groupId>
<artifactId>
knife4j-spring-boot-starter
</artifactId>
</dependency>
<dependency>
<groupId>
cn.hutool
</groupId>
<artifactId>
hutool-all
</artifactId>
</dependency>
</dependencies>
</dependencies>
<build>
<build>
...
...
src/main/java/com/topsunit/scanservice/ximai/entity/Cmsmb.java
0 → 100644
View file @
592435dd
package
com
.
topsunit
.
scanservice
.
ximai
.
entity
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
javax.persistence.Entity
;
import
javax.persistence.Id
;
/**
* <p>Title: Cmsmb</p>
* <p>Description: 工厂信息档</p>
*
* @author xi.feng
* @version V1.0
* @date 2021/10/29
*/
@Data
@Entity
public
class
Cmsmb
extends
EntityBase
{
/**
* 仓库编号
*/
@Id
@ApiModelProperty
(
"工厂编号"
)
private
String
mc001
;
/**
*仓库名称
*/
@ApiModelProperty
(
"工厂名称"
)
private
String
mc002
;
}
src/main/java/com/topsunit/scanservice/ximai/entity/Cmsmc.java
View file @
592435dd
package
com
.
topsunit
.
scanservice
.
ximai
.
entity
;
package
com
.
topsunit
.
scanservice
.
ximai
.
entity
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
javax.persistence.Entity
;
import
javax.persistence.Entity
;
import
javax.persistence.Id
;
import
javax.persistence.Id
;
...
@@ -11,31 +14,29 @@ import javax.persistence.Id;
...
@@ -11,31 +14,29 @@ import javax.persistence.Id;
* @version V1.0
* @version V1.0
* @date 2021/10/29
* @date 2021/10/29
*/
*/
@Data
@Entity
@Entity
public
class
Cmsmc
extends
EntityBase
{
public
class
Cmsmc
extends
EntityBase
{
/**
/**
* 仓库编号
* 仓库编号
*/
*/
@Id
@Id
@ApiModelProperty
(
"仓库编号"
)
private
String
mc001
;
private
String
mc001
;
/**
/**
*
仓库名称
*仓库名称
*/
*/
@ApiModelProperty
(
"仓库名称"
)
private
String
mc002
;
private
String
mc002
;
/**
* 工厂编号
*/
@ApiModelProperty
(
"工厂编号"
)
private
String
mc003
;
/**
* 备注
*/
@ApiModelProperty
(
"备注"
)
private
String
mc007
;
public
String
getMc001
()
{
return
mc001
;
}
public
void
setMc001
(
String
mc001
)
{
this
.
mc001
=
mc001
;
}
public
String
getMc002
()
{
return
mc002
;
}
public
void
setMc002
(
String
mc002
)
{
this
.
mc002
=
mc002
;
}
}
}
src/main/java/com/topsunit/scanservice/ximai/entity/Copma.java
0 → 100644
View file @
592435dd
package
com
.
topsunit
.
scanservice
.
ximai
.
entity
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
javax.persistence.Entity
;
import
javax.persistence.Id
;
/**
* <p>Title: Purma</p>
* <p>Description: 客户基本信息档</p>
*
* @author chicheng.li
* @version V1.0
* @date 2024/10/15
*/
@Data
@Entity
public
class
Copma
extends
EntityBase
{
@Id
@ApiModelProperty
(
"客户编号"
)
private
String
ma001
;
@ApiModelProperty
(
"客户简称"
)
private
String
ma002
;
@ApiModelProperty
(
"客户全称"
)
private
String
ma003
;
/**
* 1:已核准、2:尚待核准、3:不准交易[DEF:1]//20030312 5.0 P00-03030003 ADD BY 28995↓
*/
@ApiModelProperty
(
"核准状态"
)
private
String
ma097
;
@ApiModelProperty
(
"备注"
)
private
String
ma049
;
}
src/main/java/com/topsunit/scanservice/ximai/entity/Invma.java
0 → 100644
View file @
592435dd
package
com
.
topsunit
.
scanservice
.
ximai
.
entity
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
javax.persistence.Entity
;
import
javax.persistence.Id
;
import
javax.persistence.IdClass
;
/**
* <p>Title: Invmb</p>
* <p>Description: 品号基本信息档</p>
*
* @author xi.feng
* @version V1.0
* @date 2021/10/26
*/
@Data
@Entity
@IdClass
(
InvmaId
.
class
)
public
class
Invma
extends
EntityBase
{
@Id
@ApiModelProperty
(
"分类方式"
)
private
String
ma001
;
@Id
@ApiModelProperty
(
"品号类别编号"
)
private
String
ma002
;
@ApiModelProperty
(
"品号类别名称"
)
private
String
ma003
;
}
src/main/java/com/topsunit/scanservice/ximai/entity/InvmaId.java
0 → 100644
View file @
592435dd
package
com
.
topsunit
.
scanservice
.
ximai
.
entity
;
import
lombok.Data
;
import
java.io.Serializable
;
import
java.util.Objects
;
/**
* <p>Title: InvmdId</p>
* <p>Description: 品号换算单位档</p>
*
* @author xi.feng
* @version V1.0
*/
@Data
public
class
InvmaId
implements
Serializable
{
public
InvmaId
()
{
}
public
InvmaId
(
String
ma001
,
String
ma002
)
{
this
.
ma001
=
String
.
format
(
"%1$-20s"
,
ma001
);;
this
.
ma002
=
String
.
format
(
"%1$-4s"
,
ma002
);;
}
/**
* 品号
*/
private
String
ma001
;
/**
* 换算单位
*/
private
String
ma002
;
@Override
public
boolean
equals
(
Object
o
)
{
if
(
this
==
o
)
return
true
;
if
(
o
==
null
||
getClass
()
!=
o
.
getClass
())
return
false
;
InvmaId
invmdId
=
(
InvmaId
)
o
;
return
ma001
.
equals
(
invmdId
.
ma001
)
&&
ma002
.
equals
(
invmdId
.
ma002
);
}
@Override
public
int
hashCode
()
{
return
Objects
.
hash
(
ma001
,
ma002
);
}
}
src/main/java/com/topsunit/scanservice/ximai/entity/Invmb.java
View file @
592435dd
package
com
.
topsunit
.
scanservice
.
ximai
.
entity
;
package
com
.
topsunit
.
scanservice
.
ximai
.
entity
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
javax.persistence.Entity
;
import
javax.persistence.Entity
;
import
javax.persistence.Id
;
import
javax.persistence.Id
;
...
@@ -11,79 +14,52 @@ import javax.persistence.Id;
...
@@ -11,79 +14,52 @@ import javax.persistence.Id;
* @version V1.0
* @version V1.0
* @date 2021/10/26
* @date 2021/10/26
*/
*/
@Data
@Entity
@Entity
public
class
Invmb
extends
EntityBase
{
public
class
Invmb
extends
EntityBase
{
@Id
@Id
@ApiModelProperty
(
"品号"
)
private
String
mb001
;
private
String
mb001
;
@ApiModelProperty
(
"品名"
)
private
String
mb002
;
private
String
mb002
;
@ApiModelProperty
(
"规格"
)
private
String
mb003
;
private
String
mb003
;
@ApiModelProperty
(
"内部图号"
)
private
String
udf07
;
@ApiModelProperty
(
"库存单位"
)
private
String
mb004
;
private
String
mb004
;
@ApiModelProperty
(
"品号类别"
)
private
String
mb005
;
/**
* N:不需要、Y:需要不检查库存量、W:仅需警告、T:需要且检查库存量
*/
@ApiModelProperty
(
"批号管理"
)
private
String
mb022
;
private
String
mb022
;
private
String
mb029
;
private
String
mb043
;
private
String
mb149
;
public
String
getMb001
()
{
return
mb001
;
}
public
void
setMb001
(
String
mb001
)
{
this
.
mb001
=
mb001
;
}
public
String
getMb002
()
{
return
mb002
;
}
public
void
setMb002
(
String
mb002
)
{
this
.
mb002
=
mb002
;
}
public
String
getMb003
()
{
return
mb003
;
}
public
void
setMb003
(
String
mb003
)
{
this
.
mb003
=
mb003
;
}
public
String
getMb004
()
{
@ApiModelProperty
(
"客户图号"
)
return
mb004
;
private
String
mb029
;
}
public
void
setMb004
(
String
mb004
)
{
this
.
mb004
=
mb004
;
}
public
String
getMb022
()
{
return
mb022
;
}
public
void
setMb022
(
String
mb022
)
{
this
.
mb022
=
mb022
;
}
public
String
getMb029
()
{
return
mb029
;
}
public
void
setMb029
(
String
mb029
)
{
this
.
mb029
=
mb029
;
}
public
String
getMb043
()
{
return
mb043
;
}
public
void
setMb043
(
String
mb043
)
{
/**
this
.
mb043
=
mb043
;
* 0:免检、1:抽检(减量)、2:抽检(正常)、3:抽检(加严)、4:全检 //880820 MODI BY 551
}
*/
@ApiModelProperty
(
"检验方式"
)
private
String
mb043
;
public
String
getMb149
()
{
@ApiModelProperty
(
"计价单位"
)
return
mb149
;
private
String
mb149
;
}
@ApiModelProperty
(
"客户品号"
)
private
String
udf01
;
@ApiModelProperty
(
"主要仓库"
)
private
String
mb017
;
@ApiModelProperty
(
"会计"
)
private
String
test1
;
/**
* Y:已核准、y:尚待核准、N:不准交易[DEF:"Y"]
*/
@ApiModelProperty
(
"核准状态"
)
private
String
mb109
;
public
void
setMb149
(
String
mb149
)
{
@ApiModelProperty
(
"备注"
)
this
.
mb149
=
mb149
;
private
String
mb028
;
}
}
}
src/main/java/com/topsunit/scanservice/ximai/entity/Invml.java
View file @
592435dd
package
com
.
topsunit
.
scanservice
.
ximai
.
entity
;
package
com
.
topsunit
.
scanservice
.
ximai
.
entity
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
javax.persistence.Entity
;
import
javax.persistence.Entity
;
import
javax.persistence.Id
;
import
javax.persistence.Id
;
import
javax.persistence.IdClass
;
import
javax.persistence.IdClass
;
...
@@ -10,6 +13,7 @@ import java.math.BigDecimal;
...
@@ -10,6 +13,7 @@ import java.math.BigDecimal;
* Date: 2021/10/29 21:42
* Date: 2021/10/29 21:42
* Description: 品号仓库库位档
* Description: 品号仓库库位档
*/
*/
@Data
@Entity
@Entity
@IdClass
(
InvmlId
.
class
)
@IdClass
(
InvmlId
.
class
)
public
class
Invml
extends
EntityBase
{
public
class
Invml
extends
EntityBase
{
...
@@ -17,133 +21,64 @@ public class Invml extends EntityBase {
...
@@ -17,133 +21,64 @@ public class Invml extends EntityBase {
* 品号
* 品号
*/
*/
@Id
@Id
@ApiModelProperty
(
"品号"
)
private
String
ml001
;
private
String
ml001
;
/**
/**
* 仓库
* 仓库
*/
*/
@Id
@Id
@ApiModelProperty
(
"仓库"
)
private
String
ml002
;
private
String
ml002
;
/**
/**
* 库位
* 库位
*/
*/
@Id
@Id
@ApiModelProperty
(
"库位"
)
private
String
ml003
;
private
String
ml003
;
/**
/**
* 批号
* 批号
*/
*/
@Id
@Id
@ApiModelProperty
(
"批号"
)
private
String
ml004
;
private
String
ml004
;
/**
/**
* 库存数量
* 库存数量
*/
*/
@ApiModelProperty
(
"库存数量"
)
private
BigDecimal
ml005
;
private
BigDecimal
ml005
;
/**
/**
* 库存包装数量
* 库存包装数量
*/
*/
@ApiModelProperty
(
"库存包装数量"
)
private
BigDecimal
ml006
;
private
BigDecimal
ml006
;
/**
/**
* 预留字段 库存金额
* 预留字段 库存金额
*/
*/
@ApiModelProperty
(
"库存金额"
)
private
BigDecimal
ml007
;
private
BigDecimal
ml007
;
/**
/**
* 上次盘点日
* 上次盘点日
*/
*/
@ApiModelProperty
(
"上次盘点日"
)
private
String
ml008
;
private
String
ml008
;
/**
/**
* 最近入库日
* 最近入库日
*/
*/
@ApiModelProperty
(
"最近入库日"
)
private
String
ml009
;
private
String
ml009
;
/**
/**
* 最近出库日
* 最近出库日
*/
*/
@ApiModelProperty
(
"最近出库日"
)
private
String
ml010
;
private
String
ml010
;
public
String
getMl001
()
{
return
ml001
;
}
public
void
setMl001
(
String
ml001
)
{
this
.
ml001
=
ml001
;
}
public
String
getMl002
()
{
return
ml002
;
}
public
void
setMl002
(
String
ml002
)
{
this
.
ml002
=
ml002
;
}
public
String
getMl003
()
{
return
ml003
;
}
public
void
setMl003
(
String
ml003
)
{
this
.
ml003
=
ml003
;
}
public
String
getMl004
()
{
return
ml004
;
}
public
void
setMl004
(
String
ml004
)
{
this
.
ml004
=
ml004
;
}
public
BigDecimal
getMl005
()
{
return
ml005
;
}
public
void
setMl005
(
BigDecimal
ml005
)
{
this
.
ml005
=
ml005
;
}
public
BigDecimal
getMl006
()
{
return
ml006
;
}
public
void
setMl006
(
BigDecimal
ml006
)
{
this
.
ml006
=
ml006
;
}
public
BigDecimal
getMl007
()
{
return
ml007
;
}
public
void
setMl007
(
BigDecimal
ml007
)
{
this
.
ml007
=
ml007
;
}
public
String
getMl008
()
{
return
ml008
;
}
public
void
setMl008
(
String
ml008
)
{
this
.
ml008
=
ml008
;
}
public
String
getMl009
()
{
return
ml009
;
}
public
void
setMl009
(
String
ml009
)
{
this
.
ml009
=
ml009
;
}
public
String
getMl010
()
{
return
ml010
;
}
public
void
setMl010
(
String
ml010
)
{
this
.
ml010
=
ml010
;
}
}
}
src/main/java/com/topsunit/scanservice/ximai/entity/Mocta.java
View file @
592435dd
package
com
.
topsunit
.
scanservice
.
ximai
.
entity
;
package
com
.
topsunit
.
scanservice
.
ximai
.
entity
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
javax.persistence.Entity
;
import
javax.persistence.Entity
;
import
javax.persistence.Id
;
import
javax.persistence.Id
;
import
javax.persistence.IdClass
;
import
javax.persistence.IdClass
;
...
@@ -10,880 +13,283 @@ import java.math.BigDecimal;
...
@@ -10,880 +13,283 @@ import java.math.BigDecimal;
* Date: 2021/10/28 15:36
* Date: 2021/10/28 15:36
* Description: 工单单头
* Description: 工单单头
*/
*/
@Data
@Entity
@Entity
@IdClass
(
MoctaId
.
class
)
@IdClass
(
MoctaId
.
class
)
public
class
Mocta
extends
EntityBase
{
public
class
Mocta
extends
EntityBase
{
/*工单单别*/
/*工单单别*/
@Id
@Id
@ApiModelProperty
(
"工单单别"
)
private
String
ta001
;
private
String
ta001
;
/*工单单号*/
/*工单单号*/
@Id
@Id
@ApiModelProperty
(
"工单单号"
)
private
String
ta002
;
private
String
ta002
;
/*开单日期[FORMATE:YMD]*/
/*开单日期[FORMATE:YMD]*/
@ApiModelProperty
(
"开单日期"
)
private
String
ta003
;
private
String
ta003
;
/*BOM日期[FORMATE:YMD]*/
/*BOM日期[FORMATE:YMD]*/
@ApiModelProperty
(
"BOM日期"
)
private
String
ta004
;
private
String
ta004
;
/*BOM版本*/
/*BOM版本*/
@ApiModelProperty
(
"BOM版本"
)
private
String
ta005
;
private
String
ta005
;
/*产品品号*/
/*产品品号*/
@ApiModelProperty
(
"产品品号"
)
private
String
ta006
;
private
String
ta006
;
/*单位*/
/*单位*/
@ApiModelProperty
(
"单位"
)
private
String
ta007
;
private
String
ta007
;
/*预留字段 小单位*/
/*预留字段 小单位*/
@ApiModelProperty
(
"小单位"
)
private
String
ta008
;
private
String
ta008
;
/*预计开工[FORMATE:YMD]*/
/*预计开工[FORMATE:YMD]*/
@ApiModelProperty
(
"预计开工"
)
private
String
ta009
;
private
String
ta009
;
/*预计完工[FORMATE:YMD]*/
/*预计完工[FORMATE:YMD]*/
@ApiModelProperty
(
"预计完工"
)
private
String
ta010
;
private
String
ta010
;
/*状态码 1.未生产、2.已发料、3.生产中、Y.已完工、y.指定完工*/
/*状态码 1.未生产、2.已发料、3.生产中、Y.已完工、y.指定完工*/
@ApiModelProperty
(
"状态码"
)
private
String
ta011
;
private
String
ta011
;
/*实际开工[FORMATE:YMD]*/
/*实际开工[FORMATE:YMD]*/
@ApiModelProperty
(
"实际开工"
)
private
String
ta012
;
private
String
ta012
;
/*审核码 Y、N、V*/
/*审核码 Y、N、V*/
@ApiModelProperty
(
"审核码"
)
private
String
ta013
;
private
String
ta013
;
/*实际完工[FORMATE:YMD]*/
/*实际完工[FORMATE:YMD]*/
@ApiModelProperty
(
"实际完工"
)
private
String
ta014
;
private
String
ta014
;
/*预计产量*/
/*预计产量*/
@ApiModelProperty
(
"预计产量"
)
private
BigDecimal
ta015
;
private
BigDecimal
ta015
;
/*已领套数*/
/*已领套数*/
@ApiModelProperty
(
"已领套数"
)
private
BigDecimal
ta016
;
private
BigDecimal
ta016
;
/*已生产量*/
/*已生产量*/
@ApiModelProperty
(
"已生产量"
)
private
BigDecimal
ta017
;
private
BigDecimal
ta017
;
/*报废数量*/
/*报废数量*/
@ApiModelProperty
(
"报废数量"
)
private
BigDecimal
ta018
;
private
BigDecimal
ta018
;
/*工厂编号*/
/*工厂编号*/
@ApiModelProperty
(
"工厂编号"
)
private
String
ta019
;
private
String
ta019
;
/*入库仓库*/
/*入库仓库*/
@ApiModelProperty
(
"入库仓库"
)
private
String
ta020
;
private
String
ta020
;
/*工作中心*/
/*工作中心*/
@ApiModelProperty
(
"工作中心"
)
private
String
ta021
;
private
String
ta021
;
/*委外单价*/
/*委外单价*/
@ApiModelProperty
(
"委外单价"
)
private
BigDecimal
ta022
;
private
BigDecimal
ta022
;
/*加工单位*/
/*加工单位*/
@ApiModelProperty
(
"加工单位"
)
private
String
ta023
;
private
String
ta023
;
/*源工单单别*/
/*源工单单别*/
@ApiModelProperty
(
"源工单单别"
)
private
String
ta024
;
private
String
ta024
;
/*源工单编号*/
/*源工单编号*/
@ApiModelProperty
(
"源工单编号"
)
private
String
ta025
;
private
String
ta025
;
/*订单单别*/
/*订单单别*/
@ApiModelProperty
(
"订单单别"
)
private
String
ta026
;
private
String
ta026
;
/*订单单号*/
/*订单单号*/
@ApiModelProperty
(
"订单单号"
)
private
String
ta027
;
private
String
ta027
;
/*订单序号*/
/*订单序号*/
@ApiModelProperty
(
"订单序号"
)
private
String
ta028
;
private
String
ta028
;
/*备注*/
/*备注*/
@ApiModelProperty
(
"备注"
)
private
String
ta029
;
private
String
ta029
;
/*性质 1.厂内工单、2.委外工单*/
/*性质 1.厂内工单、2.委外工单*/
@ApiModelProperty
(
"性质"
)
private
String
ta030
;
private
String
ta030
;
/*打印次数*/
/*打印次数*/
@ApiModelProperty
(
"打印次数"
)
private
Integer
ta031
;
private
Integer
ta031
;
/*委外供应商*/
/*委外供应商*/
@ApiModelProperty
(
"委外供应商"
)
private
String
ta032
;
private
String
ta032
;
/*计划批号*/
/*计划批号*/
@ApiModelProperty
(
"计划批号"
)
private
String
ta033
;
private
String
ta033
;
/*产品品名*/
/*产品品名*/
@ApiModelProperty
(
"产品品名"
)
private
String
ta034
;
private
String
ta034
;
/*产品规格*/
/*产品规格*/
@ApiModelProperty
(
"产品规格"
)
private
String
ta035
;
private
String
ta035
;
/*预计开工 休假显示0.不休假、1.全天、2.半天*/
/*预计开工 休假显示0.不休假、1.全天、2.半天*/
@ApiModelProperty
(
"预计开工 休假显示0.不休假、1.全天、2.半天"
)
private
String
ta036
;
private
String
ta036
;
/*预计完工 休假显示0.不休假、1.全天、2.半天*/
/*预计完工 休假显示0.不休假、1.全天、2.半天*/
@ApiModelProperty
(
"预计完工 休假显示0.不休假、1.全天、2.半天"
)
private
String
ta037
;
private
String
ta037
;
/*实际开工 休假显示0.不休假、1.全天、2.半天*/
/*实际开工 休假显示0.不休假、1.全天、2.半天*/
@ApiModelProperty
(
"实际开工 休假显示0.不休假、1.全天、2.半天"
)
private
String
ta038
;
private
String
ta038
;
/*实际完工 休假显示0.不休假、1.全天、2.半天*/
/*实际完工 休假显示0.不休假、1.全天、2.半天*/
@ApiModelProperty
(
"实际完工 休假显示0.不休假、1.全天、2.半天"
)
private
String
ta039
;
private
String
ta039
;
/*审核日[FORMATE:YMD]*/
/*审核日[FORMATE:YMD]*/
@ApiModelProperty
(
"审核日"
)
private
String
ta040
;
private
String
ta040
;
/*审核者*/
/*审核者*/
@ApiModelProperty
(
"审核者"
)
private
String
ta041
;
private
String
ta041
;
/*币种*/
/*币种*/
@ApiModelProperty
(
"币种"
)
private
String
ta042
;
private
String
ta042
;
/*汇率*/
/*汇率*/
@ApiModelProperty
(
"汇率"
)
private
BigDecimal
ta043
;
private
BigDecimal
ta043
;
/*急料*/
/*急料*/
@ApiModelProperty
(
"急料"
)
private
String
ta044
;
private
String
ta044
;
/*预计产包装量*/
/*预计产包装量*/
@ApiModelProperty
(
"预计产包装量"
)
private
BigDecimal
ta045
;
private
BigDecimal
ta045
;
/*已生产包装量*/
/*已生产包装量*/
@ApiModelProperty
(
"已生产包装量"
)
private
BigDecimal
ta046
;
private
BigDecimal
ta046
;
/*报废包装数量*/
/*报废包装数量*/
@ApiModelProperty
(
"报废包装数量"
)
private
BigDecimal
ta047
;
private
BigDecimal
ta047
;
/*包装单位*/
/*包装单位*/
@ApiModelProperty
(
"包装单位"
)
private
String
ta048
;
private
String
ta048
;
/*签核状态码 0.待处理、S.传送中、1.签核中、2.退件、3.已核准、4.撤销审核中、5.作废中、6.取消作废中、N.不运行电子签核[DEF:"N"]*/
/*签核状态码 0.待处理、S.传送中、1.签核中、2.退件、3.已核准、4.撤销审核中、5.作废中、6.取消作废中、N.不运行电子签核[DEF:"N"]*/
@ApiModelProperty
(
"签核状态码"
)
private
String
ta049
;
private
String
ta049
;
/*其他备注一*/
/*其他备注一*/
@ApiModelProperty
(
"其他备注一"
)
private
String
ta050
;
private
String
ta050
;
/*其他备注二*/
/*其他备注二*/
@ApiModelProperty
(
"其他备注一"
)
private
String
ta051
;
private
String
ta051
;
/*其他备注三*/
/*其他备注三*/
@ApiModelProperty
(
"其他备注三"
)
private
String
ta052
;
private
String
ta052
;
/*其他备注四*/
/*其他备注四*/
@ApiModelProperty
(
"其他备注四"
)
private
String
ta053
;
private
String
ta053
;
/*传送次数[DEF:0]*/
/*传送次数[DEF:0]*/
@ApiModelProperty
(
"传送次数"
)
private
Integer
ta054
;
private
Integer
ta054
;
/*税种 1.应税内含、2.应税外加、3.零税率、4.免税、9.不计税*/
/*税种 1.应税内含、2.应税外加、3.零税率、4.免税、9.不计税*/
@ApiModelProperty
(
"税种"
)
private
String
ta055
;
private
String
ta055
;
/*加工数量*/
/*加工数量*/
@ApiModelProperty
(
"加工数量"
)
private
BigDecimal
ta056
;
private
BigDecimal
ta056
;
/*生产批号*/
/*生产批号*/
@ApiModelProperty
(
"生产批号"
)
private
String
ta057
;
private
String
ta057
;
/*批号说明*/
/*批号说明*/
@ApiModelProperty
(
"批号说明"
)
private
String
ta058
;
private
String
ta058
;
/*准产证 Y/N,[DEF:"N"]*/
/*准产证 Y/N,[DEF:"N"]*/
@ApiModelProperty
(
"准产证"
)
private
String
ta059
;
private
String
ta059
;
/*破坏数量*/
/*破坏数量*/
@ApiModelProperty
(
"破坏数量"
)
private
BigDecimal
ta060
;
private
BigDecimal
ta060
;
/*破坏包装数量*/
/*破坏包装数量*/
@ApiModelProperty
(
"破坏包装数量"
)
private
BigDecimal
ta061
;
private
BigDecimal
ta061
;
/*途程卡打印次数*/
/*途程卡打印次数*/
@ApiModelProperty
(
"途程卡打印次数"
)
private
Integer
ta062
;
private
Integer
ta062
;
/*需求日期[FORMATE:YMD]*/
/*需求日期[FORMATE:YMD]*/
@ApiModelProperty
(
"需求日期"
)
private
String
ta063
;
private
String
ta063
;
/*部门编号*/
/*部门编号*/
@ApiModelProperty
(
"部门编号"
)
private
String
ta064
;
private
String
ta064
;
/*预留字段*/
/*预留字段*/
@ApiModelProperty
(
"预留字段"
)
private
String
ta065
;
private
String
ta065
;
/*预留字段*/
/*预留字段*/
@ApiModelProperty
(
"预留字段"
)
private
String
ta066
;
private
String
ta066
;
/*预留字段*/
/*预留字段*/
@ApiModelProperty
(
"预留字段"
)
private
String
ta067
;
private
String
ta067
;
/*预留字段*/
/*预留字段*/
@ApiModelProperty
(
"预留字段"
)
private
BigDecimal
ta068
;
private
BigDecimal
ta068
;
/*预留字段*/
/*预留字段*/
@ApiModelProperty
(
"预留字段"
)
private
BigDecimal
ta069
;
private
BigDecimal
ta069
;
/*预留字段*/
/*预留字段*/
@ApiModelProperty
(
"预留字段"
)
private
BigDecimal
ta070
;
private
BigDecimal
ta070
;
/*付款条件编号*/
/*付款条件编号*/
@ApiModelProperty
(
"付款条件编号"
)
private
String
ta071
;
private
String
ta071
;
/*税率 税率(%)[DEF:9.9999]*/
/*税率 税率(%)[DEF:9.9999]*/
@ApiModelProperty
(
"税率"
)
private
BigDecimal
ta072
;
private
BigDecimal
ta072
;
/*配置方案*/
/*配置方案*/
@ApiModelProperty
(
"配置方案"
)
private
String
ta073
;
private
String
ta073
;
/*配置序号*/
/*配置序号*/
@ApiModelProperty
(
"配置序号"
)
private
String
ta074
;
private
String
ta074
;
/*已装配数量*/
/*已装配数量*/
@ApiModelProperty
(
"已装配数量"
)
private
BigDecimal
tad01
;
private
BigDecimal
tad01
;
/*类型 1.工程品号 2.正式品号[DEF:"2"]*/
/*类型 1.工程品号 2.正式品号[DEF:"2"]*/
@ApiModelProperty
(
"类型 1.工程品号 2.正式品号"
)
private
String
tac01
;
private
String
tac01
;
/*到货数量*/
/*到货数量*/
@ApiModelProperty
(
"到货数量"
)
private
BigDecimal
tac02
;
private
BigDecimal
tac02
;
/*到货包装数量*/
/*到货包装数量*/
@ApiModelProperty
(
"到货包装数量"
)
private
BigDecimal
tac03
;
private
BigDecimal
tac03
;
/*树状码*/
/*树状码*/
@ApiModelProperty
(
"树状码"
)
private
String
ta075
;
private
String
ta075
;
/*根来源单别*/
/*根来源单别*/
@ApiModelProperty
(
"根来源单别"
)
private
String
ta076
;
private
String
ta076
;
/*根来源单号*/
/*根来源单号*/
@ApiModelProperty
(
"根来源单号"
)
private
String
ta077
;
private
String
ta077
;
/*根来源序号*/
/*根来源序号*/
@ApiModelProperty
(
"根来源序号"
)
private
String
ta078
;
private
String
ta078
;
/*计划序号*/
/*计划序号*/
@ApiModelProperty
(
"计划序号"
)
private
String
ta079
;
private
String
ta079
;
/*计划版本*/
/*计划版本*/
@ApiModelProperty
(
"计划版本"
)
private
String
ta080
;
private
String
ta080
;
/*开工日占用天数*/
/*开工日占用天数*/
@ApiModelProperty
(
"开工日占用天数"
)
private
BigDecimal
ta081
;
private
BigDecimal
ta081
;
/*完工日占用天数*/
/*完工日占用天数*/
@ApiModelProperty
(
"完工日占用天数"
)
private
BigDecimal
ta082
;
private
BigDecimal
ta082
;
/*项目编号*/
/*项目编号*/
@ApiModelProperty
(
"项目编号"
)
private
String
ta083
;
private
String
ta083
;
@ApiModelProperty
(
"客户图号"
)
private
String
udf02
;
@ApiModelProperty
(
"客户项目号"
)
private
String
udf03
;
@ApiModelProperty
(
"客户编号"
)
private
String
udf04
;
@ApiModelProperty
(
"客户简称"
)
private
String
udf05
;
@ApiModelProperty
(
"内部图号"
)
private
String
udf08
;
public
String
getTa001
()
{
return
ta001
;
}
public
void
setTa001
(
String
ta001
)
{
this
.
ta001
=
ta001
;
}
public
String
getTa002
()
{
return
ta002
;
}
public
void
setTa002
(
String
ta002
)
{
this
.
ta002
=
ta002
;
}
public
String
getTa003
()
{
return
ta003
;
}
public
void
setTa003
(
String
ta003
)
{
this
.
ta003
=
ta003
;
}
public
String
getTa004
()
{
return
ta004
;
}
public
void
setTa004
(
String
ta004
)
{
this
.
ta004
=
ta004
;
}
public
String
getTa005
()
{
return
ta005
;
}
public
void
setTa005
(
String
ta005
)
{
this
.
ta005
=
ta005
;
}
public
String
getTa006
()
{
return
ta006
;
}
public
void
setTa006
(
String
ta006
)
{
this
.
ta006
=
ta006
;
}
public
String
getTa007
()
{
return
ta007
;
}
public
void
setTa007
(
String
ta007
)
{
this
.
ta007
=
ta007
;
}
public
String
getTa008
()
{
return
ta008
;
}
public
void
setTa008
(
String
ta008
)
{
this
.
ta008
=
ta008
;
}
public
String
getTa009
()
{
return
ta009
;
}
public
void
setTa009
(
String
ta009
)
{
this
.
ta009
=
ta009
;
}
public
String
getTa010
()
{
return
ta010
;
}
public
void
setTa010
(
String
ta010
)
{
this
.
ta010
=
ta010
;
}
public
String
getTa011
()
{
return
ta011
;
}
public
void
setTa011
(
String
ta011
)
{
this
.
ta011
=
ta011
;
}
public
String
getTa012
()
{
return
ta012
;
}
public
void
setTa012
(
String
ta012
)
{
this
.
ta012
=
ta012
;
}
public
String
getTa013
()
{
return
ta013
;
}
public
void
setTa013
(
String
ta013
)
{
this
.
ta013
=
ta013
;
}
public
String
getTa014
()
{
return
ta014
;
}
public
void
setTa014
(
String
ta014
)
{
this
.
ta014
=
ta014
;
}
public
BigDecimal
getTa015
()
{
return
ta015
;
}
public
void
setTa015
(
BigDecimal
ta015
)
{
this
.
ta015
=
ta015
;
}
public
BigDecimal
getTa016
()
{
return
ta016
;
}
public
void
setTa016
(
BigDecimal
ta016
)
{
this
.
ta016
=
ta016
;
}
public
BigDecimal
getTa017
()
{
return
ta017
;
}
public
void
setTa017
(
BigDecimal
ta017
)
{
this
.
ta017
=
ta017
;
}
public
BigDecimal
getTa018
()
{
return
ta018
;
}
public
void
setTa018
(
BigDecimal
ta018
)
{
this
.
ta018
=
ta018
;
}
public
String
getTa019
()
{
return
ta019
;
}
public
void
setTa019
(
String
ta019
)
{
this
.
ta019
=
ta019
;
}
public
String
getTa020
()
{
return
ta020
;
}
public
void
setTa020
(
String
ta020
)
{
this
.
ta020
=
ta020
;
}
public
String
getTa021
()
{
return
ta021
;
}
public
void
setTa021
(
String
ta021
)
{
this
.
ta021
=
ta021
;
}
public
BigDecimal
getTa022
()
{
return
ta022
;
}
public
void
setTa022
(
BigDecimal
ta022
)
{
this
.
ta022
=
ta022
;
}
public
String
getTa023
()
{
return
ta023
;
}
public
void
setTa023
(
String
ta023
)
{
this
.
ta023
=
ta023
;
}
public
String
getTa024
()
{
return
ta024
;
}
public
void
setTa024
(
String
ta024
)
{
this
.
ta024
=
ta024
;
}
public
String
getTa025
()
{
return
ta025
;
}
public
void
setTa025
(
String
ta025
)
{
this
.
ta025
=
ta025
;
}
public
String
getTa026
()
{
return
ta026
;
}
public
void
setTa026
(
String
ta026
)
{
this
.
ta026
=
ta026
;
}
public
String
getTa027
()
{
return
ta027
;
}
public
void
setTa027
(
String
ta027
)
{
this
.
ta027
=
ta027
;
}
public
String
getTa028
()
{
return
ta028
;
}
public
void
setTa028
(
String
ta028
)
{
this
.
ta028
=
ta028
;
}
public
String
getTa029
()
{
return
ta029
;
}
public
void
setTa029
(
String
ta029
)
{
this
.
ta029
=
ta029
;
}
public
String
getTa030
()
{
return
ta030
;
}
public
void
setTa030
(
String
ta030
)
{
this
.
ta030
=
ta030
;
}
public
Integer
getTa031
()
{
return
ta031
;
}
public
void
setTa031
(
Integer
ta031
)
{
this
.
ta031
=
ta031
;
}
public
String
getTa032
()
{
return
ta032
;
}
public
void
setTa032
(
String
ta032
)
{
this
.
ta032
=
ta032
;
}
public
String
getTa033
()
{
return
ta033
;
}
public
void
setTa033
(
String
ta033
)
{
this
.
ta033
=
ta033
;
}
public
String
getTa034
()
{
return
ta034
;
}
public
void
setTa034
(
String
ta034
)
{
this
.
ta034
=
ta034
;
}
public
String
getTa035
()
{
return
ta035
;
}
public
void
setTa035
(
String
ta035
)
{
this
.
ta035
=
ta035
;
}
public
String
getTa036
()
{
return
ta036
;
}
public
void
setTa036
(
String
ta036
)
{
this
.
ta036
=
ta036
;
}
public
String
getTa037
()
{
return
ta037
;
}
public
void
setTa037
(
String
ta037
)
{
this
.
ta037
=
ta037
;
}
public
String
getTa038
()
{
return
ta038
;
}
public
void
setTa038
(
String
ta038
)
{
this
.
ta038
=
ta038
;
}
public
String
getTa039
()
{
return
ta039
;
}
public
void
setTa039
(
String
ta039
)
{
this
.
ta039
=
ta039
;
}
public
String
getTa040
()
{
return
ta040
;
}
public
void
setTa040
(
String
ta040
)
{
this
.
ta040
=
ta040
;
}
public
String
getTa041
()
{
return
ta041
;
}
public
void
setTa041
(
String
ta041
)
{
this
.
ta041
=
ta041
;
}
public
String
getTa042
()
{
return
ta042
;
}
public
void
setTa042
(
String
ta042
)
{
this
.
ta042
=
ta042
;
}
public
BigDecimal
getTa043
()
{
return
ta043
;
}
public
void
setTa043
(
BigDecimal
ta043
)
{
this
.
ta043
=
ta043
;
}
public
String
getTa044
()
{
return
ta044
;
}
public
void
setTa044
(
String
ta044
)
{
this
.
ta044
=
ta044
;
}
public
BigDecimal
getTa045
()
{
return
ta045
;
}
public
void
setTa045
(
BigDecimal
ta045
)
{
this
.
ta045
=
ta045
;
}
public
BigDecimal
getTa046
()
{
return
ta046
;
}
public
void
setTa046
(
BigDecimal
ta046
)
{
this
.
ta046
=
ta046
;
}
public
BigDecimal
getTa047
()
{
return
ta047
;
}
public
void
setTa047
(
BigDecimal
ta047
)
{
this
.
ta047
=
ta047
;
}
public
String
getTa048
()
{
return
ta048
;
}
public
void
setTa048
(
String
ta048
)
{
this
.
ta048
=
ta048
;
}
public
String
getTa049
()
{
return
ta049
;
}
public
void
setTa049
(
String
ta049
)
{
this
.
ta049
=
ta049
;
}
public
String
getTa050
()
{
return
ta050
;
}
public
void
setTa050
(
String
ta050
)
{
this
.
ta050
=
ta050
;
}
public
String
getTa051
()
{
return
ta051
;
}
public
void
setTa051
(
String
ta051
)
{
this
.
ta051
=
ta051
;
}
public
String
getTa052
()
{
return
ta052
;
}
public
void
setTa052
(
String
ta052
)
{
this
.
ta052
=
ta052
;
}
public
String
getTa053
()
{
return
ta053
;
}
public
void
setTa053
(
String
ta053
)
{
this
.
ta053
=
ta053
;
}
public
Integer
getTa054
()
{
return
ta054
;
}
public
void
setTa054
(
Integer
ta054
)
{
this
.
ta054
=
ta054
;
}
public
String
getTa055
()
{
return
ta055
;
}
public
void
setTa055
(
String
ta055
)
{
this
.
ta055
=
ta055
;
}
public
BigDecimal
getTa056
()
{
return
ta056
;
}
public
void
setTa056
(
BigDecimal
ta056
)
{
this
.
ta056
=
ta056
;
}
public
String
getTa057
()
{
return
ta057
;
}
public
void
setTa057
(
String
ta057
)
{
this
.
ta057
=
ta057
;
}
public
String
getTa058
()
{
return
ta058
;
}
public
void
setTa058
(
String
ta058
)
{
this
.
ta058
=
ta058
;
}
public
String
getTa059
()
{
return
ta059
;
}
public
void
setTa059
(
String
ta059
)
{
this
.
ta059
=
ta059
;
}
public
BigDecimal
getTa060
()
{
return
ta060
;
}
public
void
setTa060
(
BigDecimal
ta060
)
{
this
.
ta060
=
ta060
;
}
public
BigDecimal
getTa061
()
{
return
ta061
;
}
public
void
setTa061
(
BigDecimal
ta061
)
{
this
.
ta061
=
ta061
;
}
public
Integer
getTa062
()
{
return
ta062
;
}
public
void
setTa062
(
Integer
ta062
)
{
this
.
ta062
=
ta062
;
}
public
String
getTa063
()
{
return
ta063
;
}
public
void
setTa063
(
String
ta063
)
{
this
.
ta063
=
ta063
;
}
public
String
getTa064
()
{
return
ta064
;
}
public
void
setTa064
(
String
ta064
)
{
this
.
ta064
=
ta064
;
}
public
String
getTa065
()
{
return
ta065
;
}
public
void
setTa065
(
String
ta065
)
{
this
.
ta065
=
ta065
;
}
public
String
getTa066
()
{
return
ta066
;
}
public
void
setTa066
(
String
ta066
)
{
this
.
ta066
=
ta066
;
}
public
String
getTa067
()
{
return
ta067
;
}
public
void
setTa067
(
String
ta067
)
{
this
.
ta067
=
ta067
;
}
public
BigDecimal
getTa068
()
{
return
ta068
;
}
public
void
setTa068
(
BigDecimal
ta068
)
{
this
.
ta068
=
ta068
;
}
public
BigDecimal
getTa069
()
{
return
ta069
;
}
public
void
setTa069
(
BigDecimal
ta069
)
{
this
.
ta069
=
ta069
;
}
public
BigDecimal
getTa070
()
{
return
ta070
;
}
public
void
setTa070
(
BigDecimal
ta070
)
{
this
.
ta070
=
ta070
;
}
public
String
getTa071
()
{
return
ta071
;
}
public
void
setTa071
(
String
ta071
)
{
this
.
ta071
=
ta071
;
}
public
BigDecimal
getTa072
()
{
return
ta072
;
}
public
void
setTa072
(
BigDecimal
ta072
)
{
this
.
ta072
=
ta072
;
}
public
String
getTa073
()
{
return
ta073
;
}
public
void
setTa073
(
String
ta073
)
{
this
.
ta073
=
ta073
;
}
public
String
getTa074
()
{
return
ta074
;
}
public
void
setTa074
(
String
ta074
)
{
this
.
ta074
=
ta074
;
}
public
BigDecimal
getTad01
()
{
return
tad01
;
}
public
void
setTad01
(
BigDecimal
tad01
)
{
this
.
tad01
=
tad01
;
}
public
String
getTac01
()
{
return
tac01
;
}
public
void
setTac01
(
String
tac01
)
{
this
.
tac01
=
tac01
;
}
public
BigDecimal
getTac02
()
{
return
tac02
;
}
public
void
setTac02
(
BigDecimal
tac02
)
{
this
.
tac02
=
tac02
;
}
public
BigDecimal
getTac03
()
{
return
tac03
;
}
public
void
setTac03
(
BigDecimal
tac03
)
{
this
.
tac03
=
tac03
;
}
public
String
getTa075
()
{
return
ta075
;
}
public
void
setTa075
(
String
ta075
)
{
this
.
ta075
=
ta075
;
}
public
String
getTa076
()
{
return
ta076
;
}
public
void
setTa076
(
String
ta076
)
{
this
.
ta076
=
ta076
;
}
public
String
getTa077
()
{
return
ta077
;
}
public
void
setTa077
(
String
ta077
)
{
this
.
ta077
=
ta077
;
}
public
String
getTa078
()
{
return
ta078
;
}
public
void
setTa078
(
String
ta078
)
{
this
.
ta078
=
ta078
;
}
public
String
getTa079
()
{
return
ta079
;
}
public
void
setTa079
(
String
ta079
)
{
this
.
ta079
=
ta079
;
}
public
String
getTa080
()
{
return
ta080
;
}
public
void
setTa080
(
String
ta080
)
{
this
.
ta080
=
ta080
;
}
public
BigDecimal
getTa081
()
{
return
ta081
;
}
public
void
setTa081
(
BigDecimal
ta081
)
{
this
.
ta081
=
ta081
;
}
public
BigDecimal
getTa082
()
{
return
ta082
;
}
public
void
setTa082
(
BigDecimal
ta082
)
{
this
.
ta082
=
ta082
;
}
public
String
getTa083
()
{
return
ta083
;
}
public
void
setTa083
(
String
ta083
)
{
this
.
ta083
=
ta083
;
}
}
}
src/main/java/com/topsunit/scanservice/ximai/entity/Purma.java
View file @
592435dd
package
com
.
topsunit
.
scanservice
.
ximai
.
entity
;
package
com
.
topsunit
.
scanservice
.
ximai
.
entity
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
javax.persistence.Entity
;
import
javax.persistence.Entity
;
import
javax.persistence.Id
;
import
javax.persistence.Id
;
...
@@ -11,52 +15,39 @@ import javax.persistence.Id;
...
@@ -11,52 +15,39 @@ import javax.persistence.Id;
* @version V1.0
* @version V1.0
* @date 2021/10/26
* @date 2021/10/26
*/
*/
@Data
@Entity
@Entity
public
class
Purma
extends
EntityBase
{
public
class
Purma
extends
EntityBase
{
@Id
@Id
@ApiModelProperty
(
"供应商编号"
)
private
String
ma001
;
private
String
ma001
;
private
String
ma003
;
private
String
ma005
;
private
String
ma021
;
private
String
ma030
;
public
String
getMa001
()
{
return
ma001
;
}
public
void
setMa001
(
String
ma001
)
{
@ApiModelProperty
(
"简称"
)
this
.
ma001
=
ma001
;
private
String
ma002
;
}
public
String
getMa003
()
{
@ApiModelProperty
(
"公司全称"
)
return
ma003
;
private
String
ma003
;
}
public
void
setMa003
(
String
ma003
)
{
this
.
ma003
=
ma003
;
}
public
String
getMa005
()
{
@ApiModelProperty
(
"税号"
)
return
ma005
;
private
String
ma005
;
}
public
void
setMa005
(
String
ma005
)
{
/**
this
.
ma005
=
ma005
;
* 1:已核准、2:尚待核准、3:不准交易
}
*/
@ApiModelProperty
(
"核准状态"
)
private
String
ma016
;
public
String
getMa021
()
{
@ApiModelProperty
(
"交易币种"
)
return
ma021
;
private
String
ma021
;
}
public
void
setMa021
(
String
ma021
)
{
/**
this
.
ma021
=
ma021
;
* 1.二联式、2.三联式、3.二联式收银机发票、4.三联式收银机发票、5.电子计算机发票、6.免用统一发票、S.可抵扣专用发票、B.普通发票、T.运输发票、N.不可抵扣专用发票 A.农产品收购凭证、G.海关代征完税凭证、W.废旧物资收购凭证、Z.其他 //901025 S06-9009036 MODI A~Z //8
}
*/
@ApiModelProperty
(
"发票种类"
)
private
String
ma030
;
public
String
getMa030
()
{
@ApiModelProperty
(
"备注"
)
return
ma030
;
private
String
ma040
;
}
public
void
setMa030
(
String
ma030
)
{
this
.
ma030
=
ma030
;
}
}
}
ximaiscanservice.iml
View file @
592435dd
<?xml version="1.0" encoding="UTF-8"?>
<?xml version="1.0" encoding="UTF-8"?>
<module
org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule=
"true"
type=
"JAVA_MODULE"
version=
"4"
>
<module
version=
"4"
>
<component
name=
"FacetManager"
>
<component
name=
"FacetManager"
>
<facet
type=
"jpa"
name=
"JPA"
>
<facet
type=
"jpa"
name=
"JPA"
>
<configuration>
<configuration>
...
@@ -14,120 +14,5 @@
...
@@ -14,120 +14,5 @@
<facet
type=
"Spring"
name=
"Spring"
>
<facet
type=
"Spring"
name=
"Spring"
>
<configuration
/>
<configuration
/>
</facet>
</facet>
<facet
type=
"web"
name=
"Web"
>
<configuration>
<webroots
/>
</configuration>
</facet>
</component>
<component
name=
"NewModuleRootManager"
LANGUAGE_LEVEL=
"JDK_1_8"
>
<output
url=
"file://$MODULE_DIR$/target/classes"
/>
<output-test
url=
"file://$MODULE_DIR$/target/test-classes"
/>
<content
url=
"file://$MODULE_DIR$"
>
<sourceFolder
url=
"file://$MODULE_DIR$/src/main/java"
isTestSource=
"false"
/>
<sourceFolder
url=
"file://$MODULE_DIR$/src/main/resources"
type=
"java-resource"
/>
<sourceFolder
url=
"file://$MODULE_DIR$/target/generated-sources/annotations"
isTestSource=
"false"
generated=
"true"
/>
<excludeFolder
url=
"file://$MODULE_DIR$/target"
/>
</content>
<orderEntry
type=
"inheritedJdk"
/>
<orderEntry
type=
"sourceFolder"
forTests=
"false"
/>
<orderEntry
type=
"library"
name=
"Maven: org.springframework.boot:spring-boot-starter:2.3.5.RELEASE"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.springframework.boot:spring-boot:2.3.5.RELEASE"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.springframework:spring-context:5.2.10.RELEASE"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.springframework.boot:spring-boot-autoconfigure:2.3.5.RELEASE"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.springframework.boot:spring-boot-starter-logging:2.3.5.RELEASE"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: ch.qos.logback:logback-classic:1.2.3"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: ch.qos.logback:logback-core:1.2.3"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.apache.logging.log4j:log4j-to-slf4j:2.13.3"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.apache.logging.log4j:log4j-api:2.13.3"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.slf4j:jul-to-slf4j:1.7.30"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: jakarta.annotation:jakarta.annotation-api:1.3.5"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.springframework:spring-core:5.2.10.RELEASE"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.springframework:spring-jcl:5.2.10.RELEASE"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.yaml:snakeyaml:1.26"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.springframework.boot:spring-boot-starter-web:2.3.5.RELEASE"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.springframework.boot:spring-boot-starter-json:2.3.5.RELEASE"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.11.3"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.11.3"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: com.fasterxml.jackson.module:jackson-module-parameter-names:2.11.3"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.springframework.boot:spring-boot-starter-tomcat:2.3.5.RELEASE"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.apache.tomcat.embed:tomcat-embed-core:9.0.39"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.glassfish:jakarta.el:3.0.3"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.apache.tomcat.embed:tomcat-embed-websocket:9.0.39"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.springframework:spring-web:5.2.10.RELEASE"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.springframework:spring-beans:5.2.10.RELEASE"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.springframework:spring-webmvc:5.2.10.RELEASE"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.springframework:spring-aop:5.2.10.RELEASE"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.springframework:spring-expression:5.2.10.RELEASE"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.springframework.boot:spring-boot-starter-test:2.3.5.RELEASE"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.springframework.boot:spring-boot-test:2.3.5.RELEASE"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.springframework.boot:spring-boot-test-autoconfigure:2.3.5.RELEASE"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: com.jayway.jsonpath:json-path:2.4.0"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: net.minidev:json-smart:2.3"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: net.minidev:accessors-smart:1.2"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.ow2.asm:asm:5.0.4"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: jakarta.xml.bind:jakarta.xml.bind-api:2.3.3"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: jakarta.activation:jakarta.activation-api:1.2.2"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.assertj:assertj-core:3.16.1"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.hamcrest:hamcrest:2.2"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.junit.jupiter:junit-jupiter:5.6.3"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.junit.jupiter:junit-jupiter-api:5.6.3"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.opentest4j:opentest4j:1.2.0"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.junit.platform:junit-platform-commons:1.6.3"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.junit.jupiter:junit-jupiter-params:5.6.3"
level=
"project"
/>
<orderEntry
type=
"library"
scope=
"RUNTIME"
name=
"Maven: org.junit.jupiter:junit-jupiter-engine:5.6.3"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.junit.vintage:junit-vintage-engine:5.6.3"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.apiguardian:apiguardian-api:1.1.0"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.junit.platform:junit-platform-engine:1.6.3"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.mockito:mockito-core:3.3.3"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: net.bytebuddy:byte-buddy:1.10.17"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: net.bytebuddy:byte-buddy-agent:1.10.17"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.objenesis:objenesis:2.6"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.mockito:mockito-junit-jupiter:3.3.3"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.skyscreamer:jsonassert:1.5.0"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: com.vaadin.external.google:android-json:0.0.20131108.vaadin1"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.springframework:spring-test:5.2.10.RELEASE"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.xmlunit:xmlunit-core:2.7.0"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.springframework.boot:spring-boot-devtools:2.3.5.RELEASE"
level=
"project"
/>
<orderEntry
type=
"library"
scope=
"TEST"
name=
"Maven: junit:junit:4.13.1"
level=
"project"
/>
<orderEntry
type=
"library"
scope=
"TEST"
name=
"Maven: org.hamcrest:hamcrest-core:2.2"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.springframework.boot:spring-boot-starter-data-jpa:2.3.5.RELEASE"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.springframework.boot:spring-boot-starter-aop:2.3.5.RELEASE"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.aspectj:aspectjweaver:1.9.6"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.springframework.boot:spring-boot-starter-jdbc:2.3.5.RELEASE"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: com.zaxxer:HikariCP:3.4.5"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.springframework:spring-jdbc:5.2.10.RELEASE"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: jakarta.transaction:jakarta.transaction-api:1.3.3"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: jakarta.persistence:jakarta.persistence-api:2.2.3"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.hibernate:hibernate-core:5.4.22.Final"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.jboss.logging:jboss-logging:3.4.1.Final"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.javassist:javassist:3.24.0-GA"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: antlr:antlr:2.7.7"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.jboss:jandex:2.1.3.Final"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: com.fasterxml:classmate:1.5.1"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.dom4j:dom4j:2.1.3"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.hibernate.common:hibernate-commons-annotations:5.1.0.Final"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.glassfish.jaxb:jaxb-runtime:2.3.3"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.glassfish.jaxb:txw2:2.3.3"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: com.sun.istack:istack-commons-runtime:3.0.11"
level=
"project"
/>
<orderEntry
type=
"library"
scope=
"RUNTIME"
name=
"Maven: com.sun.activation:jakarta.activation:1.2.2"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.springframework.data:spring-data-jpa:2.3.5.RELEASE"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.springframework.data:spring-data-commons:2.3.5.RELEASE"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.springframework:spring-orm:5.2.10.RELEASE"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.springframework:spring-tx:5.2.10.RELEASE"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.springframework:spring-aspects:5.2.10.RELEASE"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: com.alibaba:druid-spring-boot-starter:1.2.5"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.slf4j:slf4j-api:1.7.30"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: com.alibaba:druid:1.2.5"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.mapstruct:mapstruct:1.4.2.Final"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.mapstruct:mapstruct-processor:1.4.2.Final"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: com.auth0:java-jwt:3.9.0"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: com.fasterxml.jackson.core:jackson-databind:2.11.3"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: com.fasterxml.jackson.core:jackson-annotations:2.11.3"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: com.fasterxml.jackson.core:jackson-core:2.11.3"
level=
"project"
/>
<orderEntry
type=
"library"
scope=
"RUNTIME"
name=
"Maven: commons-codec:commons-codec:1.14"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: commons-collections:commons-collections:3.2.2"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: commons-lang:commons-lang:2.6"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: com.microsoft.sqlserver:mssql-jdbc:9.2.1.jre8"
level=
"project"
/>
</component>
</component>
</module>
</module>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment